G'day James,
Yeah sure. Sorry I didn't stick around, I had visitors. :/
Code:
closecage1:
$cage1_close nottriggerable
$cage1 playsound shutgate
$cage1 moveto $closed1
$cage1 time 2
$cage1 waitmove
$cage1_trig triggerable
end
closecage2:
$cage2_close nottriggerable
$cage2 playsound shutgate
$cage2 moveto $closed2
$cage2 time 2
$cage2 waitmove
$cage2_trig triggerable
end
opencage1:
$cage1_trig nottriggerable
$cage1 playsound opengate
$cage1 moveto $opened1
$cage1 time 2
$cage1 waitmove
$cage1_close triggerable
end
opencage2:
$cage2_trig nottriggerable
$cage2 playsound opengate
$cage2 moveto $opened2
$cage2 time 2
$cage2 waitmove
$cage2_close triggerable
end
It's all part of an elevator that has the old fashion cage gate on each level and an automatic elevator door (which is bound to the lift) yet only the gate can be manually opened or closed.
Both cage and door close automatically with the triggered buttons and the door opens automatically when the level is reached... but not the cage. I'd like to keep it like this.
Thank you.